home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / imain.c < prev    next >
C/C++ Source or Header  |  1997-04-19  |  17KB  |  568 lines

  1. /* Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* imain.c */
  20. /* Common support for interpreter front ends */
  21. #include "memory_.h"
  22. #include "string_.h"
  23. /* Capture stdin/out/err before gs.h redefines them. */
  24. #include <stdio.h>
  25. void
  26. gs_get_real_stdio(FILE *stdfiles[3])
  27. {    stdfiles[0] = stdin;
  28.     stdfiles[1] = stdout;
  29.     stdfiles[2] = stderr;
  30. }
  31. #include "ghost.h"
  32. #include "gp.h"
  33. #include "gslib.h"
  34. #include "gsmatrix.h"            /* for gxdevice.h */
  35. #include "gsutil.h"            /* for bytes_compare */
  36. #include "gxdevice.h"
  37. #include "errors.h"
  38. #include "oper.h"
  39. #include "idebug.h"
  40. #include "idict.h"
  41. #include "iname.h"            /* for name_init */
  42. #include "dstack.h"
  43. #include "estack.h"
  44. #include "ostack.h"            /* put here for files.h */
  45. #include "stream.h"            /* for files.h */
  46. #include "files.h"
  47. #include "ialloc.h"
  48. #include "strimpl.h"        /* for sfilter.h */
  49. #include "sfilter.h"        /* for iscan.h */
  50. #include "iscan.h"
  51. #include "main.h"
  52. #include "store.h"
  53. #include "isave.h"        /* for prototypes */
  54. #include "interp.h"
  55. #include "ivmspace.h"
  56.  
  57. /* ------ Exported data ------ */
  58.  
  59. /* Define the default instance of the interpreter. */
  60. /* Currently, this is the *only possible* instance, because most of */
  61. /* the places that need to take an explicit instance argument don't. */
  62. private gs_main_instance the_gs_main_instance;
  63. gs_main_instance *
  64. gs_main_instance_default(void)
  65. {    /* Determine whether the instance has been initialized. */
  66.     if ( the_gs_main_instance.memory_chunk_size == 0 )
  67.       the_gs_main_instance = gs_main_instance_init_values;
  68.     return &the_gs_main_instance;
  69. }
  70.  
  71. /* The only reason we export gs_exit_status is so that window systems */
  72. /* with alert boxes can know whether to pause before exiting if */
  73. /* the program terminates with an error.  There must be a better way .... */
  74. int gs_exit_status;
  75.  
  76. /* ------ Imported data ------ */
  77.  
  78. /* Configuration information imported from gconfig.c and iinit.c. */
  79. extern const char *gs_init_file;
  80. extern const byte far_data gs_init_string[];
  81. extern const uint far_data gs_init_string_sizeof;
  82. extern ref gs_init_file_array[];
  83. extern ref gs_emulator_name_array[];
  84.  
  85. /* ------ Forward references ------ */
  86.  
  87. private int gs_run_init_file(P3(gs_main_instance *, int *, ref *));
  88.  
  89. /* ------ Initialization ------ */
  90.  
  91. /* A handy way to declare and execute an initialization procedure: */
  92. #define call_init(proc)\
  93. { extern void proc(P0()); proc(); }
  94.  
  95. /* Initialization to be done before anything else. */
  96. void
  97. gs_main_init0(gs_main_instance *minst, FILE *in, FILE *out, FILE *err,
  98.   int max_lib_paths)
  99. {    /* Set our versions of stdin/out/err. */
  100.     gs_stdin = in;
  101.     gs_stdout = out;
  102.     gs_stderr = err;
  103.     /* Do platform-dependent initialization. */
  104.     /* We have to do this as the very first thing, */
  105.     /* because it detects attempts to run 80N86 executables (N>0) */
  106.     /* on incompatible processors. */
  107.     gp_init();
  108.     /* Initialize the imager. */
  109.     gs_lib_init0(gs_stdout);
  110.     /* Initialize the file search paths. */
  111.     make_array(&minst->lib_path.container, avm_foreign, max_lib_paths,
  112.            (ref *)gs_malloc(max_lib_paths, sizeof(ref),
  113.                     "lib_path array"));
  114.     make_array(&minst->lib_path.list, avm_foreign | a_readonly, 0,
  115.            minst->lib_path.container.value.refs);
  116.     minst->lib_path.env = 0;
  117.     minst->lib_path.final = 0;
  118.     minst->lib_path.count = 0;
  119.     minst->user_errors = 1;
  120.     minst->init_done = 0;
  121. }
  122.  
  123. /* Initialization to be done before constructing any objects. */
  124. void
  125. gs_main_init1(gs_main_instance *minst)
  126. {    if ( minst->init_done < 1 )
  127.     {    {    extern bool gs_have_level2(P0());
  128.             ialloc_init(&gs_memory_default,
  129.                     minst->memory_chunk_size,
  130.                     gs_have_level2());
  131.             gs_lib_init1((gs_memory_t *)imemory_system);
  132.             alloc_save_init(idmemory);
  133.         }
  134.         if ( name_init(minst->name_table_size, imemory_system) == 0 )
  135.         {    puts("name_init failed");
  136.             gs_exit(1);
  137.         }
  138.         call_init(obj_init)        /* requires name_init */
  139.         call_init(scan_init)        /* ditto */
  140.         minst->init_done = 1;
  141.     }
  142. }
  143.  
  144. /* Initialization to be done before running any files. */
  145. private void
  146. init2_make_string_array(ref *srefs, const char *aname)
  147. {    ref *ifp = srefs;
  148.     ref ifa;
  149.     for ( ; ifp->value.bytes != 0; ifp++ )
  150.       r_set_size(ifp, strlen((const char *)ifp->value.bytes));
  151.     make_tasv(&ifa, t_array, a_readonly | avm_foreign,
  152.           ifp - srefs, refs, srefs);
  153.     initial_enter_name(aname, &ifa);
  154. }
  155. void
  156. gs_main_init2(gs_main_instance *minst)
  157. {    gs_main_init1(minst);
  158.     if ( minst->init_done < 2 )
  159.        {    int code, exit_code;
  160.         ref error_object;
  161.         call_init(igs_init)
  162.         call_init(zop_init)
  163.         {    extern void gs_iodev_init(P1(gs_memory_t *));
  164.             gs_iodev_init(imemory);
  165.         }
  166.         call_init(op_init)    /* requires obj_init, scan_init */
  167.  
  168.         /* Set up the array of additional initialization files. */
  169.         init2_make_string_array(gs_init_file_array, "INITFILES");
  170.         /* Set up the array of emulator names. */
  171.         init2_make_string_array(gs_emulator_name_array, "EMULATORS");
  172.         /* Pass the search path. */
  173.         initial_enter_name("LIBPATH", &minst->lib_path.list);
  174.  
  175.         /* Execute the standard initialization file. */
  176.         code = gs_run_init_file(minst, &exit_code, &error_object);
  177.         if ( code < 0 )
  178.         {    if ( code != e_Fatal )
  179.                 gs_debug_dump_stack(code, &error_object);
  180.             gs_exit_with_code((exit_code ? exit_code : 2), code);
  181.         }
  182.         minst->init_done = 2;
  183.        }
  184. }
  185.  
  186. /* ------ Search paths ------ */
  187.  
  188. /* Internal routine to add a set of directories to a search list. */
  189. /* Returns 0 or an error code. */
  190. private int
  191. file_path_add(gs_file_path *pfp, const char *dirs)
  192. {    uint len = r_size(&pfp->list);
  193.     const char *dpath = dirs;
  194.  
  195.     if ( dirs == 0 )
  196.       return 0;
  197.     for ( ; ; )
  198.        {    /* Find the end of the next directory name. */
  199.         const char *npath = dpath;
  200.  
  201.         while ( *npath != 0 && *npath != gp_file_name_list_separator )
  202.           npath++;
  203.         if ( npath > dpath )
  204.           {    if ( len == r_size(&pfp->container) )
  205.               return_error(e_limitcheck);
  206.             make_const_string(&pfp->container.value.refs[len],
  207.                       avm_foreign | a_readonly,
  208.                       npath - dpath, (const byte *)dpath);
  209.             ++len;
  210.           }
  211.         if ( !*npath )
  212.           break;
  213.         dpath = npath + 1;
  214.        }
  215.     r_set_size(&pfp->list, len);
  216.     return 0;
  217. }
  218.  
  219. /* Add a library search path to the list. */
  220. void
  221. gs_main_add_lib_path(gs_main_instance *minst, const char *lpath)
  222. {    /* Account for the possibility that the first element */
  223.     /* is gp_current_directory name added by set_lib_paths. */
  224.     int first_is_here =
  225.       (r_size(&minst->lib_path.list) != 0 &&
  226.        minst->lib_path.container.value.refs[0].value.bytes ==
  227.        (const byte *)gp_current_directory_name ? 1 : 0);
  228.  
  229.     r_set_size(&minst->lib_path.list, minst->lib_path.count +
  230.            first_is_here);
  231.     file_path_add(&minst->lib_path, lpath);
  232.     minst->lib_path.count = r_size(&minst->lib_path.list) - first_is_here;
  233.     gs_main_set_lib_paths(minst);
  234. }
  235.  
  236. /* ------ Execution ------ */
  237.  
  238. /* Complete the list of library search paths. */
  239. /* This may involve adding or removing the current directory */
  240. /* as the first element. */
  241. void
  242. gs_main_set_lib_paths(gs_main_instance *minst)
  243. {    ref *paths = minst->lib_path.container.value.refs;
  244.     int first_is_here =
  245.       (r_size(&minst->lib_path.list) != 0 &&
  246.        paths[0].value.bytes == (const byte *)gp_current_directory_name ? 1 : 0);
  247.     int count = minst->lib_path.count;
  248.  
  249.     if ( minst->search_here_first )
  250.       { if ( !(first_is_here ||
  251.            (r_size(&minst->lib_path.list) != 0 &&
  252.             !bytes_compare((const byte *)gp_current_directory_name,
  253.                    strlen(gp_current_directory_name),
  254.                    paths[0].value.bytes,
  255.                    r_size(&paths[0]))))
  256.            )
  257.           { memmove(paths + 1, paths, count * sizeof(*paths));
  258.         make_const_string(paths, avm_foreign | a_readonly,
  259.                   strlen(gp_current_directory_name),
  260.                   (const byte *)gp_current_directory_name);
  261.           }
  262.       }
  263.     else
  264.       { if ( first_is_here )
  265.           memmove(paths, paths + 1, count * sizeof(*paths));
  266.       }
  267.     r_set_size(&minst->lib_path.list,
  268.            count + (minst->search_here_first ? 1 : 0));
  269.     if ( minst->lib_path.env != 0 )
  270.       file_path_add(&minst->lib_path, minst->lib_path.env);
  271.     if ( minst->lib_path.final != 0 )
  272.       file_path_add(&minst->lib_path, minst->lib_path.final);
  273. }
  274.  
  275. /* Open a file, using the search paths. */
  276. int
  277. gs_main_lib_open(gs_main_instance *minst, const char *file_name, ref *pfile)
  278. {    /* This is a separate procedure only to avoid tying up */
  279.     /* extra stack space while running the file. */
  280. #define maxfn 200
  281.     byte fn[maxfn];
  282.     uint len;
  283.     return lib_file_open(file_name, strlen(file_name), fn, maxfn,
  284.                  &len, pfile);
  285. }
  286.  
  287. /* Open and execute a file. */
  288. int
  289. gs_main_run_file(gs_main_instance *minst, const char *file_name, int user_errors, int *pexit_code, ref *perror_object)
  290. {    ref initial_file;
  291.     int code = gs_main_run_file_open(minst, file_name, &initial_file);
  292.     if ( code < 0 ) return code;
  293.     return gs_interpret(&initial_file, user_errors, pexit_code, perror_object);
  294. }
  295. int
  296. gs_main_run_file_open(gs_main_instance *minst, const char *file_name, ref *pfref)
  297. {    gs_main_set_lib_paths(minst);
  298.     if ( gs_main_lib_open(minst, file_name, pfref) < 0 )
  299.     {    eprintf1("Can't find initialization file %s.\n", file_name);
  300.         return_error(e_Fatal);
  301.     }
  302.     r_set_attrs(pfref, a_execute + a_executable);
  303.     return 0;
  304. }
  305.  
  306. /* Open and run the very first initialization file. */
  307. private int
  308. gs_run_init_file(gs_main_instance *minst, int *pexit_code, ref *perror_object)
  309. {    ref ifile;
  310.     ref first_token;
  311.     int code;
  312.     scanner_state state;
  313.  
  314.     gs_main_set_lib_paths(minst);
  315.     if ( gs_init_string_sizeof == 0 )
  316.       {    /* Read from gs_init_file. */
  317.         code = gs_main_run_file_open(minst, gs_init_file, &ifile);
  318.       }
  319.     else
  320.       {    /* Read from gs_init_string. */
  321.         code = file_read_string(gs_init_string, gs_init_string_sizeof,
  322.                     &ifile);
  323.       }
  324.     if ( code < 0 )
  325.       {    *pexit_code = 255;
  326.         return code;
  327.       }
  328.     /* Check to make sure the first token is an integer */
  329.     /* (for the version number check.) */
  330.     scanner_state_init(&state, false);
  331.     code = scan_token(ifile.value.pfile, &first_token, &state);
  332.     if ( code != 0 || !r_has_type(&first_token, t_integer) )
  333.     {    eprintf1("Initialization file %s does not begin with an integer.\n", gs_init_file);
  334.         *pexit_code = 255;
  335.         return_error(e_Fatal);
  336.     }
  337.     *++osp = first_token;
  338.     r_set_attrs(&ifile, a_executable);
  339.     return gs_interpret(&ifile, minst->user_errors,
  340.                 pexit_code, perror_object);
  341. }
  342.  
  343. /* Run a string. */
  344. int
  345. gs_main_run_string(gs_main_instance *minst, const char *str, int user_errors,
  346.   int *pexit_code, ref *perror_object)
  347. {    return gs_main_run_string_with_length(minst, str, (uint)strlen(str),
  348.                           user_errors,
  349.                           pexit_code, perror_object);
  350. }
  351. int
  352. gs_main_run_string_with_length(gs_main_instance *minst, const char *str,
  353.   uint length, int user_errors, int *pexit_code, ref *perror_object)
  354. {    int code;
  355.     code = gs_main_run_string_begin(minst, user_errors,
  356.                     pexit_code, perror_object);
  357.     if ( code < 0 )
  358.       return code;
  359.     code = gs_main_run_string_continue(minst, str, length, user_errors,
  360.                        pexit_code, perror_object);
  361.     if ( code != e_NeedInput )
  362.       return code;
  363.     return gs_main_run_string_end(minst, user_errors,
  364.                       pexit_code, perror_object);
  365. }
  366.  
  367. /* Set up for a suspendable run_string. */
  368. int
  369. gs_main_run_string_begin(gs_main_instance *minst, int user_errors,
  370.   int *pexit_code, ref *perror_object)
  371. {    const char *setup = ".runstringbegin";
  372.     ref rstr;
  373.     int code;
  374.  
  375.     gs_main_set_lib_paths(minst);
  376.     make_const_string(&rstr, avm_foreign | a_readonly | a_executable,
  377.               strlen(setup), (const byte *)setup);
  378.     code = gs_interpret(&rstr, user_errors, pexit_code, perror_object);
  379.     return (code == e_NeedInput ? 0 : code == 0 ? e_Fatal : code);
  380. }
  381. /* Continue running a string with the option of suspending. */
  382. int
  383. gs_main_run_string_continue(gs_main_instance *minst, const char *str,
  384.   uint length, int user_errors, int *pexit_code, ref *perror_object)
  385. {    ref rstr;
  386.  
  387.     if ( length == 0 )
  388.       return 0;        /* empty string signals EOF */
  389.     make_const_string(&rstr, avm_foreign | a_readonly, length,
  390.               (const byte *)str);
  391.     return gs_interpret(&rstr, user_errors, pexit_code, perror_object);
  392. }
  393. /* Signal EOF when suspended. */
  394. int
  395. gs_main_run_string_end(gs_main_instance *minst, int user_errors,
  396.   int *pexit_code, ref *perror_object)
  397. {    ref rstr;
  398.  
  399.     make_empty_const_string(&rstr, avm_foreign | a_readonly);
  400.     return gs_interpret(&rstr, user_errors, pexit_code, perror_object);
  401. }
  402.  
  403. /* ------ Operand stack access ------ */
  404.  
  405. /* These are built for comfort, not for speed. */
  406.  
  407. private int
  408. push_value(ref *pvalue)
  409. {    int code = ref_stack_push(&o_stack, 1);
  410.     if ( code < 0 )
  411.       return code;
  412.     *ref_stack_index(&o_stack, 0L) = *pvalue;
  413.     return 0;
  414. }
  415.  
  416. int
  417. gs_push_boolean(gs_main_instance *minst, bool value)
  418. {    ref vref;
  419.     make_bool(&vref, value);
  420.     return push_value(&vref);
  421. }
  422.  
  423. int
  424. gs_push_integer(gs_main_instance *minst, long value)
  425. {    ref vref;
  426.     make_int(&vref, value);
  427.     return push_value(&vref);
  428. }
  429.  
  430. int
  431. gs_push_real(gs_main_instance *minst, floatp value)
  432. {    ref vref;
  433.     make_real(&vref, value);
  434.     return push_value(&vref);
  435. }
  436.  
  437. int
  438. gs_push_string(gs_main_instance *minst, byte *chars, uint length,
  439.   bool read_only)
  440. {    ref vref;
  441.     make_string(&vref, avm_foreign | (read_only ? a_readonly : a_all),
  442.             length, (byte *)chars);
  443.     return push_value(&vref);
  444. }
  445.  
  446. private int
  447. pop_value(ref *pvalue)
  448. {    if ( !ref_stack_count(&o_stack) )
  449.       return_error(e_stackunderflow);
  450.     *pvalue = *ref_stack_index(&o_stack, 0L);
  451.     return 0;
  452. }
  453.  
  454. int
  455. gs_pop_boolean(gs_main_instance *minst, bool *result)
  456. {    ref vref;
  457.     int code = pop_value(&vref);
  458.     if ( code < 0 )
  459.       return code;
  460.     check_type_only(vref, t_boolean);
  461.     *result = vref.value.boolval;
  462.     ref_stack_pop(&o_stack, 1);
  463.     return 0;
  464. }
  465.  
  466. int
  467. gs_pop_integer(gs_main_instance *minst, long *result)
  468. {    ref vref;
  469.     int code = pop_value(&vref);
  470.     if ( code < 0 )
  471.       return code;
  472.     check_type_only(vref, t_integer);
  473.     *result = vref.value.intval;
  474.     ref_stack_pop(&o_stack, 1);
  475.     return 0;
  476. }
  477.  
  478. int
  479. gs_pop_real(gs_main_instance *minst, float *result)
  480. {    ref vref;
  481.     int code = pop_value(&vref);
  482.     if ( code < 0 )
  483.       return code;
  484.     switch ( r_type(&vref) )
  485.       {
  486.       case t_real:
  487.         *result = vref.value.realval;
  488.         break;
  489.       case t_integer:
  490.         *result = vref.value.intval;
  491.         break;
  492.       default:
  493.         return_error(e_typecheck);
  494.       }
  495.     ref_stack_pop(&o_stack, 1);
  496.     return 0;
  497. }
  498.  
  499. int
  500. gs_pop_string(gs_main_instance *minst, gs_string *result)
  501. {    ref vref;
  502.     int code = pop_value(&vref);
  503.     if ( code < 0 )
  504.       return code;
  505.     switch ( r_type(&vref) )
  506.       {
  507.       case t_name:
  508.         name_string_ref(&vref, &vref);
  509.         code = 1;
  510.         goto rstr;
  511.       case t_string:
  512.         code = (r_has_attr(&vref, a_write) ? 0 : 1);
  513. rstr:        result->data = vref.value.bytes;
  514.         result->size = r_size(&vref);
  515.         break;
  516.       default:
  517.         return_error(e_typecheck);
  518.       }
  519.     ref_stack_pop(&o_stack, 1);
  520.     return code;
  521. }
  522.  
  523. /* ------ Termination ------ */
  524.  
  525. /* Free all resources and exit. */
  526. void
  527. gs_main_finit(gs_main_instance *minst, int exit_status, int code)
  528. {    /*
  529.      * Previous versions of this code closed the devices in the
  530.      * device list here.  Since these devices are now prototypes,
  531.      * they cannot be opened, so they do not need to be closed;
  532.      * alloc_restore_all will close dynamically allocated devices.
  533.      */
  534.     gs_exit_status = exit_status;    /* see above */
  535.  
  536.     /* Do the equivalent of a restore "past the bottom". */
  537.     /* This will release all memory, close all open files, etc. */
  538.     if ( minst->init_done >= 1 )
  539.       alloc_restore_all(idmemory);
  540.     gs_lib_finit(exit_status, code);
  541. }
  542. void
  543. gs_exit_with_code(int exit_status, int code)
  544. {    gs_finit(exit_status, code);
  545.     gp_do_exit(exit_status);
  546. }
  547. void
  548. gs_exit(int exit_status)
  549. {    gs_exit_with_code(exit_status, 0);
  550. }
  551.  
  552. /* ------ Debugging ------ */
  553.  
  554. /* Dump the stacks after interpretation */
  555. void
  556. gs_debug_dump_stack(int code, ref *perror_object)
  557. {    zflush(osp);    /* force out buffered output */
  558.     dprintf1("\nUnexpected interpreter error %d.\n", code);
  559.     if ( perror_object != 0 )
  560.     {    dputs("Error object: ");
  561.         debug_print_ref(perror_object);
  562.         dputc('\n');
  563.     }
  564.     debug_dump_stack(&o_stack, "Operand stack");
  565.     debug_dump_stack(&e_stack, "Execution stack");
  566.     debug_dump_stack(&d_stack, "Dictionary stack");
  567. }
  568.